/* 公共样式 */

html {
    scroll-behavior: smooth;
}

 ::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 0px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}

 ::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #535353;
}

 ::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background: #EDEDED;
}

.wp {
    padding: 2% 2%;
    width: 96%;
    margin: 0 auto;
    min-width: 1170px;
    max-width: 1600px;
}

.wp .titledemo {
    animation-name: fadeInUp;
    visibility: visible;
}

.wp .titledemo .title {
    font-size: 0.32rem;
    font-weight: bold;
    color: #222;
    text-align: center;
    padding: 0.1rem 0 0 0;
}

.wp .titledemo .subtitle {
    font-size: 0.16rem;
    color: #222;
    padding: 0 0 0.1rem 0;
    display: block;
    text-align: center;
}


/* * {
        transition: all 0.6s;
    } */


/* 分页样式 */

.pagination {
    display: flex;
    justify-content: center;
}

.pagination li {
    width: 30px;
    height: 30px;
    margin: 10px 10px;
    border: 1px solid #ccc;
    text-align: center;
    line-height: 30px;
}

.pagination .disabled {
    opacity: 0.5;
}

.pagination .active {
    background: rgb(35, 70, 110);
    color: #fff;
}


/* 汉堡菜单icon */

.hamburger .line {
    width: 0.56rem;
    height: 3px;
    background-color: #e50012;
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

#hamburger-11 {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#hamburger-11.is-active {
    animation: smallbig 0.6s forwards;
}

@keyframes smallbig {
    0%,
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
    }
}

#hamburger-11.is-active .line:nth-child(1),
#hamburger-11.is-active .line:nth-child(2) {
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

#hamburger-11.is-active .line:nth-child(1) {
    -webkit-transform: translateY(12px) rotate(45deg);
    -ms-transform: translateY(12px) rotate(45deg);
    -o-transform: translateY(12px) rotate(45deg);
    transform: translateY(12px) rotate(45deg);
}

#hamburger-11.is-active .line:nth-child(2) {
    -webkit-transform: translateY(1px) rotate(-45deg);
    -ms-transform: translateY(1px) rotate(-45deg);
    -o-transform: translateY(1px) rotate(-45deg);
    transform: translateY(1px) rotate(-45deg);
}

#hamburger-11.is-active .line:nth-child(3) {
    width: 0;
}


/* 导航栏 */

header {
    height: 70px;
    background: #fff;
    position: fixed;
    width: 100%;
    z-index: 99;
}

.empty {
    height: 70px;
    width: 100%;
}

header .logo {
    /* padding: 0.22rem 0 0 0.1rem; */
}

header .logo img {
    max-width: 100%;
}

header .wp .menuicon {
    margin: 0 0.15rem 0 0;
    position: relative;
}

header .wp {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0;
    align-items: center;
    height: 100%;
}

header .wp nav ul {
    display: flex;
    height: 70px;
    align-items: center;
}

header .wp nav ul .item {
    position: relative;
    text-align: center;
    margin: 0 1.1vw;
    height: calc(100% - 3px);
    display: flex;
    align-items: center;
}

header .wp nav ul .item a {
    font-size: calc(0.5vw + 8.4px);
    color: #000;
    text-align: center;
}

header .wp nav ul .item>a:hover {
    font-weight: bold;
    color: #e50012;
}

header .wp nav ul .current {
    border-bottom: 3px solid #e50012;
}

header .wp nav ul .current a {
    color: #e50012;
}

header .wp nav ul .item:hover {
    border-bottom: 3px solid #e50012;
}

header .wp nav ul .item .secnav {
    display: none;
    position: absolute;
    z-index: 999;
    background: #fff;
    text-align: center;
    left: -40px;
    width: 140px;
    top: 100%;
}

header .wp nav ul .item .secnav ul {
    display: flex;
    flex-direction: column;
    width: max-content;
    background: #fff;
    height: max-content;
    width: 140px;
}

header .wp nav ul .item .secnav ul li {
    width: 100%;
}

header .wp nav ul .item:hover .secnav {
    display: block;
    animation: fadeInDown 0.4s;
    width: 100%;
}

header .wp nav ul .item .secnav .subitem {
    padding: 0.1rem 0;
    background: #f7f7f7;
    position: relative;
}

header .wp nav ul .item .secnav .subitem a {
    color: #000;
    font-size: 0.14rem;
    display: block;
    width: 100%;
}

header .wp nav ul .item .secnav .subitem:hover {
    background: #e50012;
}

header .wp nav ul .item .secnav .subitem:hover a {
    color: #fff;
}

header .wp nav ul .item .secnav .thrnav {
    display: none;
    width: 160px;
    position: absolute;
    right: -160px;
    top: 0;
}

header .wp nav ul .item .secnav .thrnav .thritem {
    padding: 0.1rem 0;
    background: #f7f7f7;
    position: relative;
}

header .wp nav ul .item .secnav .thrnav .thritem a {
    color: #000;
    font-size: 0.16rem;
}

header .wp nav ul .item .secnav .thrnav .thritem:hover {
    background: #00a4a9;
}

header .wp nav ul .item .secnav .thrnav .thritem:hover a {
    color: #fff;
}

header .wp nav ul .item .secnav .subitem:hover .thrnav {
    display: block;
    animation: fadeInDown 0.4s;
}

header .wp .head_func {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

header .wp .head_func .langbox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

header .wp .head_func .langbox img {
    margin: 0 10px 0 0;
}

header .wp .head_func .langbox span {
    font-size: calc(0.5vw + 8.4px);
    color: #333;
}

header .wp .head_func i {
    height: 11px;
    width: 1px;
    background: #333;
    display: block;
    margin: 0 15px;
}

header .wp .head_func .server {
    cursor: pointer;
}

header .servicebox {
    width: 100%;
    height: 40vh;
    padding: 0;
    background: #fff;
    border-radius: 0 0 20px 20px;
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    top: -1000%;
    z-index: 99;
    transition: all 0.4s;
    justify-content: center;
}

header .servicebox .closeit {
    position: absolute;
    right: 10%;
    top: 5%;
    cursor: pointer;
}

header .servicebox #ser {
    width: calc(50% - 20px);
    border-radius: 0;
    height: 40px;
    outline: none;
    border: 0;
    padding: 0 10px;
    border-bottom: 1px solid #ccc;
    font-size: calc(0.5vw + 6.4px);
}

header .servicebox #ser::placeholder {
    font-size: calc(0.5vw + 6.4px);
}

header .servicebox #sub {
    width: 90px;
    height: 40px;
    border-radius: 4px;
    display: block;
    margin: 0 0 0 10px;
    font-size: 14px;
    border: 0;
    outline: 0;
    color: #fff;
    background: #d61519;
    cursor: pointer;
}


/* PC-banner */

.banner .banpic {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}


/* 移动端导航 */

.mobilenav {
    position: absolute;
    z-index: 10;
    width: 100%;
    background: #fff;
    height: 100vh;
    left: -100%;
    transition: all 0.4s;
}

.mobilenav ul li {
    text-align: center;
}

.mobilenav ul li .navitem {
    font-size: 0.22rem;
    padding: 0.14rem 20px;
    display: block;
    border-bottom: 1px solid #efefef;
}

.mobilenav ul li .subnav ul li {
    border-bottom: 1px solid #efefef;
    padding: 10px 0 10px 45%;
}

.mobilenav ul li .subnav .subitem {
    font-size: 14px;
    padding: 0;
    position: relative;
    border: 0;
    text-align: left;
}

.mobilenav ul li .subnav .subitem::before {
    content: '';
    background: #a1a1a1;
    width: 10px;
    height: 1px;
    position: absolute;
    left: -15px;
    top: 10px;
}

.subnav {
    height: 0px;
    overflow: hidden;
}


/* banner */

.banner {
    line-height: 0.6
}

.banner .swiper-pagination-bullet {
    background: #fff;
}

.banner .swiper-pagination-bullet-active {
    background: #fff;
}


/* 底部 */

footer {
    background: #212121;
    position: relative;
}

footer .wp .backtotop {
    position: absolute;
    right: 8.3%;
    top: 0vw;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    -webkit-user-select: none;
    z-index: 99;
}

footer .wp .wrap {
    display: flex;
    justify-content: space-between;
}

footer .wp .wrap .lside {
    max-width: 15%;
}

footer .wp .wrap .cside {
    max-width: 100px;
}

footer .wp .wrap .cside ul li a {
    font-size: calc(0.5vw + 6.4px);
    color: #898989;
    margin: 0 0 8px 0;
    display: block;
}

footer .wp .wrap .cside ul li a:hover {
    font-weight: bold;
}

footer .wp .wrap .rside {
    width: 52.125%;
}

footer .wp .wrap .rside span {
    max-width: 550px;
    display: block;
    font-size: calc(0.5vw + 6.4px);
    margin: .5vw 0;
}

footer .funcbar {
    border-top: 1px solid #3b3b3b;
    text-align: center;
    padding: 1vw 0;
}

footer .funcbar p {
    font-size: calc(0.5vw + 6.4px);
}

footer .funcbar a {
    font-size: calc(0.5vw + 6.4px);
    display: inline-block;
    text-align: center;
}

.tabbar {
    height: 1.45rem;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    z-index: 99;
}

.tabbar .wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.tabbar .wrapper .tabitem {
    flex-grow: 1;
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 1.45rem;
    opacity: 0.8;
}

.tabbar .wrapper .active {
    opacity: 1;
    background: #2c6350;
}

.tabbar .wrapper .tabitem img {
    display: block;
    margin: 10px 0 10px 0;
}

.tabbar .wrapper .tabitem span {
    color: #fff;
    font-size: 0.2rem;
}

.cases {
    background: #f4f4f4
}

.cases .wp .list {
    display: flex;
    flex-wrap: wrap;
    width: 100%
}

.cases .wp .list .item {
    width: calc(100% / 4 - 4px);
    margin: 0 5px 5px 0;
    background: #fefefe;
    overflow: hidden;
    height: max-content;
}

.cases .wp .list .item:nth-child(4n) {
    margin: 0 0 5px 0;
}

.cases .wp .list .item .imgbox {
    height: 80%;
    width: 100%;
    overflow: hidden;
}

.cases .wp .list .item .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .8s;
}

.cases .wp .list .item .imgbox:hover img {
    transform: scale(1.08);
    transition: all 0.8s;
}

.cases .wp .list .item span {
    font-size: 0.2rem;
    padding: 0.06rem 0;
    text-align: center;
    display: block
}


/* 新闻中心 */

.newslist .newsitem {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 20px 0;
    background: #f4f4f4;
    height: 20vw;
}

.newslist .newsitem:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.newslist .newsitem .picbox {
    width: 35%;
}

.newslist .newsitem .picbox img {
    width: 100%;
    height: 100%;
}

.newslist .newsitem .txtbox {
    width: 62%;
    padding: 0 3%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.newslist .newsitem .txtbox .name {
    font-size: 20px;
    color: #333333;
    font-weight: bold;
    text-overflow: ellipsis;
    width: 90%;
    overflow: hidden;
    white-space: nowrap;
}

.newslist .newsitem .txtbox .date {
    margin: 20px 0;
    font-size: 14px;
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.newslist .newsitem .txtbox .cont {
    font-size: 16px;
    color: #666;
    line-height: 28px;
}


/*页码*/

.pagination {
    display: flex;
    justify-content: center;
    margin: 20px auto 30px;
}

.pagination li {
    width: 30px;
    height: 30px;
    margin: 10px 10px;
    border: 1px solid #efefef;
    text-align: center;
    line-height: 30px;
}

.pagination .disabled {
    opacity: 0.5;
}

.pagination .active {
    background: rgba(10, 107, 220, 1);
    color: #fff;
}

.data {
    position: relative;
    /* height: 300vh; */
}

.data .data-box {
    overflow: hidden;
    position: sticky;
    top: 0;
    left: 0;
    /* height: 100vh; */
    height: 82vh;
}

.data .data-box .overview {
    max-width: 88.5%;
    display: block;
    margin: 5vw auto 6vw;
}

.data .data-box .contont1 {
    /* width: 200vw; */
    width: 100%;
}

.data .data-box .contont1 .item {
    /* transform: translate(50%, 0); */
    margin: 0 0 0 180px;
    display: flex;
    overflow: hidden;
}

.data .data-box .contont1 .item .item-slide {
    margin-right: 6%;
}

.data .data-box .contont1 .item .item-slide p {
    color: #000;
    display: flex;
    align-items: end;
    line-height: 1;
}

.data .data-box .contont1 .item .item-slide p b {
    font-size: calc(5vw + 24px);
}

.data .data-box .contont1 .item .item-slide p em {
    font-size: calc(1vw + 10.4px);
}

.data .data-box .contont1 .item .item-slide span {
    color: #666;
    font-size: 0.2rem;
    line-height: 32px;
    white-space: nowrap;
    margin: 20px 0 0 0;
    display: block;
}

.data .data-box .contont1 .item2 {
    /* transform: translate(50%, 0);
        margin-top: -50px;
        display: flex;
        align-items: end;
        margin-left: -140px; */
    margin-top: -94px;
    display: flex;
    align-items: end;
}

.data .data-box .contont1 .item2 .car {
    width: 123px;
    height: 165px;
    background: url(../images/chacar.png) no-repeat;
}

.data .data-box .contont1 .item2 .line {
    flex: 1;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #e6212a, #f6fafd);
}

.hot_pro {
    height: 50vw;
    max-height: 960px;
    min-height: 860px;
    background: url(../images/indexpro/hot_pro_bg.jpg) no-repeat center;
    background-size: cover;
}

.hot_pro .wp {
    height: 100%;
}

.hot_pro .wp .swiper {
    height: 100%;
}

.hot_pro .wp .swiper .swiper-wrapper .swiper-slide {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    height: 90%;
}

.hot_pro .wp .swiper .swiper-wrapper .swiper-slide .pic {
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
    height: 90%;
    margin: 0 18% 0 0;
}

.hot_pro .wp .swiper .swiper-wrapper .swiper-slide .pic img {
    max-height: 80%;
}

.hot_pro .wp .swiper .swiper-wrapper .swiper-slide .pic::after {
    content: '';
    width: 8.125vw;
    height: 8.125vw;
    background: url(../images/indexpro/hot_icon.png) no-repeat center;
    position: absolute;
    right: 0;
    top: 4vw;
    background-size: contain;
}

.hot_pro .wp .swiper .swiper-wrapper .swiper-slide .tbox {
    position: absolute;
    width: max-content;
    left: 0;
    top: 19%;
}

.hot_pro .wp .swiper .swiper-wrapper .swiper-slide .tbox .name {
    font-size: 20px;
    color: #d61519;
    font-weight: bold;
}

.hot_pro .wp .swiper .swiper-wrapper .swiper-slide .tbox .title {
    font-size: calc(2vw + 10px);
    color: #19161a;
    padding: 2.5vw 0;
    font-weight: bold;
}

.hot_pro .wp .swiper .swiper-wrapper .swiper-slide .tbox .cont {
    font-size: 18px;
    color: #888;
    line-height: 34px;
    margin: 0 0 60px 0;
}

.hot_pro .wp .swiper .swiper-wrapper .swiper-slide .tbox .more {
    font-size: 18px;
    color: #19161a;
    border-bottom: 1px solid #333;
    width: max-content;
    display: block;
}

.hot_pro .wp .swiper .swiper-wrapper .swiper-slide .tbox .more:hover {
    color: #d61519;
    border-bottom: 1px solid #d61519;
}

.hot_pro .wp .swiper .swiper-pagination {
    bottom: 60px;
}

.hot_pro .wp .swiper .swiper-pagination-bullet-active {
    background: #d61519;
}

.wp .titledemo {
    padding: 80px 0 45px 0;
    text-align: center;
}

.wp .titledemo .name {
    font-size: calc(2vw + 13.6px);
    color: #19161a;
    font-weight: bold;
}

.wp .titledemo .name span {
    color: #d61519;
}

.wp .titledemo .cont {
    font-size: calc(0.5vw + 10.4px);
    color: #19161a;
}

.indexpro .wp .mode1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 2vw 0;
}

.indexpro .wp .mode1 .item {
    height: 25vw;
    min-height: 430px;
    max-height: 480px;
    background: #f5f5f5;
    position: relative;
}

.indexpro .wp .mode1 .item1 {
    width: 32%;
}

.indexpro .wp .mode1 .item2 {
    width: 32%;
}

.indexpro .wp .mode1 .item3 {
    width: 32%;
}

.indexpro .wp .mode1 .item .name {
    position: absolute;
    left: 10%;
    top: 20%;
    font-size: calc(1vw + 2.8px);
    color: #222;
    font-weight: bold;
    z-index: 99;
}

.indexpro .wp .mode1 .item img {
    max-height: 80%;
    right: 12%;
    bottom: 10%;
    position: absolute;
}

.indexpro .wp .mode2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 40vw;
    max-height: 768px;
    min-height: 600px;
}

.indexpro .wp .mode2 .lside {
    width: 71.25%;
    height: 40vw;
    max-height: 768px;
    min-height: 600px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.indexpro .wp .mode2 .lside .item {
    height: 49%;
    width: calc(100% / 3 - 10px);
    margin: 0 15px 15px 0;
    background: #f5f5f5;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.indexpro .wp .mode2 .lside .item:nth-child(3n) {
    margin: 0 0 15px 0;
}

.indexpro .wp .mode2 .lside .item span {
    position: absolute;
    font-size: calc(1vw + 2.4px);
    color: #222;
    top: 15%;
    left: 5%;
    z-index: 9;
    font-weight: bold;
}

.indexpro .wp .mode2 .lside .item img {
    position: absolute;
    bottom: 1%;
    right: 5%;
    max-height: 80%;
    z-index: 8;
}

.indexpro .wp .mode2 .rside {
    width: 27.25%;
    height: 40vw;
    max-height: 768px;
    min-height: 600px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.indexpro .wp .mode2 .rside span {
    position: absolute;
    font-size: calc(1vw + 2.4px);
    color: #222;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    font-weight: bold;
}

.indexpro .wp .mode2 .rside img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.ouradv {
    margin: 3vw 0;
    position: relative;
    height: max-content;
}

.ouradv .swiper .swiper-wrapper .swiper-slide {
    position: relative;
}

.ouradv .swiper .swiper-wrapper .swiper-slide img {
    max-width: 100%;
}

.ouradv .swiper .swiper-wrapper .swiper-slide .tbox {
    position: absolute;
    padding: 4vw 3vw 5vw;
    background: rgba(255, 255, 255, 0.85);
    width: max-content;
    height: max-content;
    z-index: 9;
    top: 20%;
    left: 8.3vw;
}

.ouradv .swiper .swiper-wrapper .swiper-slide .tbox .name {
    font-size: calc(1vw + 10px);
    color: #e6212a;
}

.ouradv .swiper .swiper-wrapper .swiper-slide .tbox .num {
    font-size: calc(1vw + 10.8px);
    color: #222;
    font-weight: bold;
    margin: 3vw 0 0.5vw 0;
}

.ouradv .swiper .swiper-wrapper .swiper-slide .tbox .title {
    font-size: calc(1vw + 22.8px);
    color: #222;
    font-weight: bold;
}

.ouradv .swiper .swiper-wrapper .swiper-slide .tbox .cont {
    font-size: calc(.5vw + 6.4px);
    color: #666;
    max-width: 520px;
    margin: 1vw 0 0 0;
    line-height: calc(1vw + 12.8px);
}

.ouradv .swiper .list {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 102px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
}

.ouradv .swiper .list .item {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    height: 102px;
    padding: 0 1vw;
    opacity: 0.6;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
}

.ouradv .swiper .list .item i {
    position: absolute;
    top: -2px;
    height: 4px;
    width: 0%;
    background: #fff;
    left: 0;
    opacity: 0;
    transition: all 0.3s;
}

.ouradv .swiper .list .item:last-child {
    border-right: 0;
}

.ouradv .swiper .list .item span {
    font-size: calc(1vw + 16.8px);
    color: #fff;
    font-weight: bold;
}

.ouradv .swiper .list .item .desc {
    font-size: calc(0.5vw + 12.4px);
    color: #fff;
}

.ouradv .swiper .list .active {
    opacity: 1;
}

.ouradv .swiper .list .active i {
    opacity: 1;
    width: 100%;
    transition: all 0.3s;
}

.indexabout {
    padding: 0 0 80px 0;
}

.indexabout .wp .wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.indexabout .wp .wrap .tbox {
    width: 39.375%;
    height: 32.29vw;
    max-height: 620px;
    min-height: 580px;
}

.indexabout .wp .wrap .tbox .name {
    font-size: calc(1vw + 10.8px);
    color: #d61519;
}

.indexabout .wp .wrap .tbox .title {
    font-size: calc(2vw + 3.6px);
    color: #19161a;
    padding: calc(2.5vw + 2.3px) 0 calc(2vw + 13.6px) 0;
    font-weight: bold;
}

.indexabout .wp .wrap .tbox .title span {
    font-size: calc(2vw + 13.6px);
}

.indexabout .wp .wrap .tbox .cont {
    font-size: calc(0.5vw + 8.4px);
    color: #888;
    line-height: calc(1vw + 16.8px);
}

.indexabout .wp .wrap .tbox .more {
    font-size: calc(0.5vw + 8.4px);
    color: rgba(25, 22, 26, 0.5);
    width: max-content;
    border-bottom: 1px solid rgba(25, 22, 26, 0.5);
    margin: calc(2vw + 5.6px) 0 0 0;
    display: block;
}

.indexabout .wp .wrap .tbox .more:hover {
    color: #d61519;
    border-bottom: 1px solid #d61519;
}

.indexabout .wp .wrap .pbox {
    width: 54.375%;
    height: 32.29vw;
    max-height: 620px;
    background: #000;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.indexabout .wp .wrap .pbox video {
    max-width: 100%;
    min-height: 450px;
}

.brand {
    background: #f5f5f5;
}


/* .brand .pic{
        max-width: 100%
    } */

.brand .wp .list {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}

.brand .wp .list:nth-child(3) {
    margin: -25px 0 0 0;
}

.brand .wp .list:nth-child(4) {
    margin: -27px 0 0 0;
}

.brand .wp .list .item {
    width: calc(100% / 6);
}

.brand .wp .list .item img {
    max-width: 100%;
    transition: all 0.8s;
}

.brand .wp .list .item:hover img {
    transform: scale(1.05);
    transition: all 0.8s;
    /* animation: pulse 0.8s; */
}

.brand .wp .back {
    margin: -50px 0 0 0;
    max-width: 100%;
}

.indexnews {
    padding: 2vw 0 0 0;
}

.indexnews .wp .title {
    font-size: calc(2vw + 13.6px);
    color: #333;
    font-weight: bold;
}

.indexnews .wp .list {
    /* display: flex;
        justify-content: flex-start;
        align-items: flex-start; */
    margin: 2vw 0;
}

.indexnews .wp .swiper .swiper-wrapper {
    padding: 0 0 3vw 0;
}

.indexnews .wp .list .item {
    /* width: calc(100% / 3 - 20px); */
    /* margin: 0 30px 0 0; */
    border-top: 2px solid #bebebe;
}

.indexnews .wp .list .item:last-child {
    margin: 0;
}

.indexnews .wp .list .item .date {
    font-size: 18px;
    color: #000;
    margin: 2vw 0;
    display: block;
}

.indexnews .wp .list .item .name {
    font-size: calc(0.5vw + 12.4px);
    color: #000;
    margin: 0 0 1.5vw 0;
    max-width: 70%;
    font-weight: bold;
}

.indexnews .wp .list .item .pbox {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.indexnews .wp .list .item .pbox img {
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}

.indexnews .wp .list .item:hover .pbox img {
    transition: all 0.4s;
    transform: scale(1.05)
}

.indexnews .wp .list .item:hover {
    border-top: 2px solid #e6212a;
}

.aboutus {
    padding: 5vw 0 0 0;
}

.aboutus .wp .wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.aboutus .wp .wrap .lside {
    width: 32%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3vw 0 0 0;
}

.aboutus .wp .wrap .lside img {
    max-width: 95%;
}

.aboutus .wp .wrap .rside {
    width: 63%;
}

.aboutus .wp .wrap .rside .name {
    font-size: calc(1vw + 16px);
    font-weight: bold;
    color: #333;
    margin: 0 0 30px 0;
}

.aboutus .wp .wrap .rside .cont {
    font-size: calc(0.5vw + 10.4px);
    color: #333;
    line-height: calc(1vw + 12px);
    text-indent: calc(1vw + 20.8px);
    line-height: calc(1vw + 16px);
}

.aboutus .wp .aboutpic {
    display: block;
    margin: 3vw auto;
    max-width: 100%;
}

.develop {
    height: 43.48958vw;
    max-height: 835px;
    background: url(../images/about/developbg.jpg) no-repeat center;
    background-size: cover;
    position: relative;
    min-height: 520px;
    min-width: 1200px;
}

.develop .name {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: calc(1vw + 26px);
    font-weight: bold;
    color: #3b3b3b;
}

.develop .swiper {
    height: 100%;
}

.develop .swiper .swiper-wrapper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.develop .swiper .swiper-wrapper .swiper-slide img {
    max-width: 73.9583%;
    margin: 11% 0 0 0;
}

.develop .swiper .prev {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    /* background: #000; */
    left: 18%;
    top: 49%;
    cursor: pointer;
    z-index: 99;
}

.develop .swiper .next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    /* background: #000; */
    right: 18%;
    cursor: pointer;
    top: 49%;
    z-index: 99;
}

.factory {
    padding: 3vw 0;
}

.factory .wp .name {
    font-size: calc(1vw + 26px);
    font-weight: bold;
    color: #3b3b3b;
    text-align: center;
    width: 100%;
    margin: 0 0 3vw 0;
}

.factory .wp .swiper .swiper-wrapper .swiper-slide img {
    max-width: 100%;
}

.factory .wp .swiper .swiper-button-prev {
    width: calc(2vw + 12.6px)!important;
    height: calc(2vw + 12.6px)!important;
}

.factory .wp .swiper .swiper-button-prev:after {
    content: '<';
    width: calc(2vw + 12.6px)!important;
    height: calc(2vw + 12.6px)!important;
    color: #fff;
    font-size: calc(1vw + 1px);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.factory .wp .swiper .swiper-button-next {
    width: calc(2vw + 12.6px)!important;
    height: calc(2vw + 12.6px)!important;
}

.factory .wp .swiper .swiper-button-next:after {
    content: '>';
    width: calc(2vw + 12.6px)!important;
    height: calc(2vw + 12.6px)!important;
    color: #fff;
    font-size: calc(1vw + 1px);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.honor {
    background: #f5f5f5;
}

.honor .wp .name {
    font-size: calc(1vw + 26px);
    font-weight: bold;
    color: #3b3b3b;
    text-align: center;
    width: 100%;
    margin: 0 0 3vw 0;
}

.honor .wp .swiper .swiper-wrapper {
    padding: 0 0 50px 0;
}

.honor .swiper-scrollbar-drag {
    background-color: #d61519;
}

.honor .wp .swiper .swiper-wrapper .swiper-slide {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* border: 1px solid #d4d4d4; */
    padding: 2vw 0 0 0;
}

.honor .wp .swiper .swiper-wrapper .swiper-slide img {
    height: 210px;
}

.honor .wp .swiper .swiper-wrapper .swiper-slide .title {
    font-size: calc(0.5vw + 8.4px);
    color: #333;
    text-align: center;
    margin: 3vw 0 1vw 0;
}

.partner {
    padding: 4vw 0;
}

.partner .wp .name {
    font-size: calc(1vw + 26px);
    font-weight: bold;
    color: #3b3b3b;
    text-align: center;
    width: 100%;
    margin: 0 0 3vw 0;
}

.partner .wp .list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.partner .wp .list .item {
    width: calc(100% / 6 - 10px);
    margin: 0 10px 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner .wp .list .item:nth-child(6n) {
    margin: 0 0 10px 0;
}

.partner .wp .list .item img {
    width: 100%;
    transition: all 0.4s;
}

.partner .wp .list .item:hover img {
    transition: all 0.4s;
    transform: scale(1.05);
}

.newscenter {
    padding: 4vw 0;
}

.newscenter .wp .list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.newscenter .wp .list .item {
    width: calc(100% / 2 - 10px);
    margin: 0 20px 20px 0;
}

.newscenter .wp .list .item:nth-child(2n) {
    margin: 0 0 20px 0;
}

.newscenter .wp .list .item .pbox {
    height: 20vw;
    min-height: 320px;
    overflow: hidden;
}

.newscenter .wp .list .item .pbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1.2s;
}

.newscenter .wp .list .item .pbox:hover img {
    transition: all 0.4s;
    transform: scale(1.05);
}

.newscenter .wp .list .item .day {
    font-size: calc(1vw + 18.8px);
    font-weight: bold;
    color: #333;
    border-bottom: 8px solid #d61519;
    width: max-content;
    line-height: 0.4;
    margin: 50px 0 10px 0;
}

.newscenter .wp .list .item .date {
    font-size: 16px;
    color: #333;
}

.newscenter .wp .list .item .con {
    font-size: 22px;
    color: #333;
    margin: 30px 0 50px 0;
}

.newscenter .wp .list .item .more {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    color: #949494;
}

.newscenter .wp .list .item .more img {
    margin: 0 0 0 6px;
}

.newsDetail {
    padding: 4vw 0;
    max-width: 1200px;
    margin: 0 auto;
}

.newsDetail .wp .title {
    font-size: 38px;
    color: #333;
    font-weight: bold;
    text-align: center;
    width: 100%;
    padding: 1vw 0;
    border-bottom: 1px solid #333;
}

.newsDetail .wp .wrap {
    display: flex;
    justify-content: space-between;
    padding: 1vw 0;
}

.newsDetail .wp .wrap .lside span {
    font-size: 16px;
    color: #666;
}

.newsDetail .wp .wrap .lside i {
    display: inline-block;
    margin: 0 1vw;
}

.newsDetail .wp .cont {
    font-size: 16px;
    color: #333;
    line-height: 32px;
}

.newsDetail .wp .detailpic {
    display: block;
    margin: 1vw auto;
    max-width: 100%;
}

.newsDetail .wp .prevnext {
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2vw 0;
}

.newsDetail .wp .prevnext .prev {
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsDetail .wp .prevnext .prev span {
    width: 40px;
    height: 40px;
    border: 1px solid #e6212a;
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsDetail .wp .prevnext .prev p {
    font-size: 16px;
    color: #e6212a;
    margin: 0 10px;
}

.newsDetail .wp .prevnext .next {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
}

.newsDetail .wp .prevnext .next span {
    width: 40px;
    height: 40px;
    border: 1px solid #e6212a;
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsDetail .wp .prevnext .next span img {
    transform: rotate(180deg);
}

.newsDetail .wp .prevnext .next p {
    font-size: 16px;
    color: #e6212a;
    margin: 0 10px;
}

.newsDetail .wp .prevnext .goback {
    font-size: 16px;
    color: #e6212a;
}

.hot_news .wp .title {
    font-size: calc(1vw + 16px);
    font-weight: bold;
    color: #333;
    padding: 0 0 0 25px;
    position: relative;
    margin: 0 0 1vw 0;
}

.hot_news .wp .title::before {
    content: '';
    width: 10px;
    height: 50%;
    background: #d61519;
    position: absolute;
    left: 0;
    top: 15px;
}

.hot_news .wp .list {
    display: flex;
}

.hot_news .wp .list .item {
    width: calc(100% / 3 - 10px);
    margin: 0 15px 0 0;
}

.hot_news .wp .list .item:last-child {
    margin: 0;
}

.hot_news .wp .list .item .pbox {
    width: 100%;
    height: 297px;
    overflow: hidden;
}

.hot_news .wp .list .item .pbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hot_news .wp .list .item .name {
    font-size: calc(0.5vw + 12.4px);
    color: #333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    width: 95%;
    margin: 1vw 0;
}

.hot_news .wp .list .item .date {
    font-size: calc(0.5vw + 6.4px);
    color: #333;
}

.procenter {
    /* padding: 4vw 0; */
}

.procenter .wp .mode1 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 0 2vw 0;
}

.procenter .wp .mode1 .item {
    height: 25vw;
    min-height: 430px;
    max-height: 480px;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
    width: calc(100% / 4 - 12px);
    margin: 0 16px 0 0;
}

.procenter .wp .mode1 .item:last-child {
    margin: 0;
}


/* .procenter .wp .mode1 .item1 {
    width: 55%;
}

.procenter .wp .mode1 .item2 {
    width: 43%;
} */

.procenter .wp .mode1 .item .name {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 5%;
    font-size: calc(1vw + 4.8px);
    color: #222;
    z-index: 9;
    width: 90%;
    text-align: center;
}

.procenter .wp .mode1 .item img {
    max-height: 75%;
    right: 22%;
    bottom: 6%;
    max-width: 65%;
    position: absolute;
}

.procenter .wp .mode2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 56.4vw;
    max-height: 1083px;
}

.procenter .wp .mode2 .lside {
    width: 65%;
    height: 56.4vw;
    max-height: 1083px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.procenter .wp .mode2 .lside .item {
    height: 49%;
    width: 100%;
    margin: 0 15px 15px 0;
    background: #f5f5f5;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.procenter .wp .mode2 .lside .item span {
    position: absolute;
    font-size: calc(0.5vw + 12.4px);
    color: #222;
    top: 15%;
    left: 5%;
    z-index: 9;
}

.procenter .wp .mode2 .lside .item img {
    position: absolute;
    bottom: 1%;
    right: 5%;
    max-height: 80%;
    z-index: 8;
}

.procenter .wp .mode2 .rside {
    width: 32%;
    height: 56.4vw;
    max-height: 1083px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.procenter .wp .mode2 .rside span {
    position: absolute;
    font-size: calc(0.5vw + 12.4px);
    color: #222;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}

.procenter .wp .mode2 .rside img {
    position: absolute;
    left: 0;
    top: 0;
    max-width: 100%;
    height: 100%;
}

.procenter2 {
    padding: 2vw 0;
}

.procenter2 .wp .name {
    font-size: calc(1vw + 26px);
    /* font-weight: bold; */
    color: #3b3b3b;
    text-align: center;
    width: 100%;
    margin: 0 0 1vw 0;
}

.procenter2 .wp .list {
    display: flex;
    flex-wrap: wrap;
}

.procenter2 .wp .list .item {
    width: calc(100% / 3 - 10px);
    margin: 0 15px 15px 0;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3vw 0 0 0;
}

.procenter2 .wp .list .item:nth-child(3n) {
    margin: 0 0 15px 0;
}

.procenter2 .wp .list .item .pbox {
    height: 20vw;
    max-height: 400px;
    min-height: 360px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.procenter2 .wp .list .item .pbox img {
    max-height: 100%;
    width: 100%;
}

.procenter2 .wp .list .item .title {
    font-size: 20px;
    color: #222;
    padding: 2vw 0;
}

.message {
    width: 100%;
    height: 440px;
    background: url(../images/pro/formbg.jpg) no-repeat center;
    background-size: cover;
}

.message .wp .formbox {
    max-width: 1200px;
    margin: 0 auto;
}

.message .wp .formbox .name {
    font-size: 20px;
    color: #fff;
    margin: 0 0 20px 0;
}

.message .wp .formbox .item {
    display: flex;
    justify-content: space-between;
    margin: 0 0 10px 0;
}

.message .wp .formbox .item input {
    width: 48%;
    outline: 0;
    background: #fff;
    border: 0;
    padding: 0 0 0 10px;
    height: 45px;
    border-radius: 10px;
    font-size: 14px;
    color: #666;
}

.message .wp .formbox .item input::placeholder {
    font-size: 14px;
    color: #666;
}

.message .wp .formbox textarea {
    height: 90px;
    width: calc(100% - 10px);
    background: #fff;
    border-radius: 10px;
    outline: 0;
    border: 0;
    padding: 10px 0 0 10px;
    font-size: 14px;
    color: #666;
}

.message .wp .formbox textarea::placeholder {
    font-size: 14px;
    color: #666;
}

.message .wp .formbox button {
    width: max-content;
    height: max-content;
    padding: 10px;
    font-size: 14px;
    color: #fff;
    background: #d61519;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border: 0;
    margin: 10px 0 0 0;
}

.prodetail {
    padding: 4vw 0;
}

.prodetail .wp .wrap {
    display: flex;
    justify-content: space-between;
}

.prodetail .wp .wrap .lside {
    width: 58%;
}

.prodetail .wp .wrap .lside .proname {
    font-size: 24px;
    color: #222;
}

.prodetail .wp .wrap .lside .type {
    font-size: 42px;
    color: #d61519;
    font-weight: bold;
}

.prodetail .wp .wrap .lside .detailbox {
    padding: 2vw 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.prodetail .wp .wrap .lside .detailbox .cont {
    font-size: 18px;
    color: #333;
}

.prodetail .wp .wrap .lside .detailbox .download {
    display: flex;
    padding: 3vw 0;
}

.prodetail .wp .wrap .lside .detailbox .download .down {
    width: 160px;
    height: 60px;
    background-color: #737373;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    outline: 0;
    border: 0;
    color: #fff;
    font-size: 18px;
    margin: 0 1.5vw 0 0;
}

.prodetail .wp .wrap .lside .detailbox .download .active {
    background: #d61519
}

.prodetail .wp .wrap .rside {
    width: 40%;
    overflow: hidden;
}

.prodetail .wp .wrap .rside img {
    max-width: 100%;
}

.prodetail .wp .detailcontent {
    margin: 3vw 0;
}

.prodetail .wp .detailcontent img {
    max-width: 100%;
}

.contact {
    padding: 3vw 0;
}

.contact .wp .wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 0 5vw 0;
}

.contact .wp .wrap .lside {
    width: 40%;
}

.contact .wp .wrap .lside .name {
    font-size: 21px;
    color: #d61519;
    margin: 0 0 15px 0;
    font-weight: bold;
}

.contact .wp .wrap .lside .com {
    font-size: calc(1vw + 18.8px);
    color: #222;
    font-weight: bold;
}

.contact .wp .wrap .lside .position {
    width: 80%;
    border-bottom: 1px solid #8e8e8e;
    margin: 4vw 0 2vw 25px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
}

.contact .wp .wrap .lside .position::before {
    content: '';
    width: 18px;
    height: 24px;
    background: url(../images/contact/positionicon.png) no-repeat center;
    background-size: contain;
    position: absolute;
    left: -25px;
}

.contact .wp .wrap .lside .position .desc {
    font-size: calc(1vw + 10.8px);
    color: #d61519;
    font-weight: bold;
}

.contact .wp .wrap .lside .position .num {
    font-size: calc(1vw + 6.8px);
    color: #d61519
}

.contact .wp .wrap .lside .detail {
    font-size: calc(0.5vw + 12.8px);
    color: #333;
    margin: 0 0 5px 0;
    max-width: 90%;
}

.contact .wp .wrap .lside .shoplist {
    display: flex;
    padding: 3vw 0;
}

.contact .wp .wrap .lside .shoplist a {
    margin: 0 2vw 0 0;
}

.contact .wp .wrap .rside {
    width: 60%;
    max-height: 550px;
    height: 28.6vw;
    min-height: 480px;
}

.contact .wp .wrap .rside .map {
    max-height: 550px;
    width: 100%;
    height: 28.6vw;
    min-height: 480px;
}

.contact .wp .wrap .rside .map2 {
    max-height: 550px;
    width: 100%;
    height: 28.6vw;
    min-height: 480px;
}


/* 媒介查询 */


/* 大屏幕（老款笔记本1366） */

@media (min-width:1921px) and (max-width:2560px) {
    .banner .banpic {
        max-width: 100%;
        display: block;
        margin: 0 auto;
    }
    .wp {
        max-width: 1920px;
    }
}

@media (max-with:1650px) {}

@media (max-with:1440px) {}

@media (max-width: 1366px) {
    header .logo img {
        max-width: 76%;
    }
    .data .data-box .contont1 .item .item-slide {
        margin-right: 4%;
    }
}

@media (max-width: 1280px) {
    .data .data-box .contont1 .item .item-slide {
        margin-right: 3%;
    }
    .data .data-box .contont1 .item .item-slide p b {
        font-size: calc(3vw + 24px);
    }
    .data .data-box .contont1 .item .item-slide span {
        color: #666;
        font-size: 0.18rem;
    }
}

@media (max-width: 1170px) {}

@media (max-width: 1024px) {
    .newslist .newsitem .txtbox .name {
        font-size: 0.2rem;
    }
    .newslist .newsitem .txtbox .date {
        margin: 0.1rem 0;
        font-size: 0.16rem;
    }
    .newslist .newsitem .txtbox .cont {
        font-size: 0.14rem;
        color: #666;
        line-height: 0.26rem;
    }
    .newslist .newsitem {
        height: 30vw;
    }
    .cases .wp .list .item {
        width: calc(100% / 3 - 4px);
        margin: 0 6px 6px 0;
    }
    .cases .wp .list .item:nth-child(4n) {
        margin: 0 6px 6px 0;
    }
    .cases .wp .list .item:nth-child(3n) {
        margin: 0 0 6px 0;
    }
    header .wp nav {
        display: none;
    }
    header .wp .menuicon {
        display: block;
    }
}

@media (max-width: 992px) {}

@media (max-width: 768px) {}

@media (max-width: 640px) {
    .newslist .newsitem .txtbox .cont {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }
    .cases .wp .list .item {
        width: calc(100% / 2 - 4px);
        margin: 0 8px 8px 0;
    }
    .cases .wp .list .item:nth-child(3n) {
        margin: 0 8px 8px 0;
    }
    .cases .wp .list .item:nth-child(2n) {
        margin: 0 0 8px 0;
    }
}

@media (max-width: 414px) {
    header .logo {
        padding: 0;
        max-width: 30%;
    }
    header .logo img {
        max-width: 100%;
        width: auto;
        height: auto;
    }
}

@media (max-width: 393px) {}

@media (max-width: 375px) {}